home *** CD-ROM | disk | FTP | other *** search
- ///////////////////////////////////////////////////////////////////////////////
- // $Id: Time.hxx,v 1.1 1994/02/18 19:54:03 bmott Exp $
- ///////////////////////////////////////////////////////////////////////////////
- // Time.hxx
- //
- // The Time object provides access to the system's time.
- //
- //
- // BSVC "A Microprocessor Simulation Framework"
- // Copyright (c) 1993
- // By: Bradford W. Mott
- // August 12,1993
- //
- ///////////////////////////////////////////////////////////////////////////////
- // $Log: Time.hxx,v $
- // Revision 1.1 1994/02/18 19:54:03 bmott
- // Initial revision
- //
- ///////////////////////////////////////////////////////////////////////////////
-
- #ifndef TIME_HXX
- #define TIME_HXX
-
- class Time {
- private:
-
- public:
- inline Time()
- {};
-
- long seconds(); // Returns the current System Time
- };
-
- #endif
-